home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxclpage.c < prev    next >
C/C++ Source or Header  |  1997-03-26  |  4KB  |  114 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxclpage.c */
  20. /* Page object management */
  21. #include "gdevprn.h"
  22. #include "gxcldev.h"
  23. #include "gxclpage.h"
  24.  
  25. /* Save a page. */
  26. int
  27. gdev_prn_save_page(gx_device_printer *pdev, gx_saved_page *page,
  28.   int num_copies)
  29. {    int code;
  30.  
  31.     /* Make sure we are banding. */
  32.     if ( !pdev->buffer_space )
  33.       return_error(gs_error_rangecheck);
  34.     if ( strlen(pdev->dname) >= sizeof(page->dname) )
  35.       return_error(gs_error_limitcheck);
  36. #define pcldev ((gx_device_clist_writer *)pdev)
  37.     if ( (code = clist_end_page(pcldev)) < 0 ||
  38.          (code = clist_fclose(pcldev->page_cfile, pcldev->page_cfname, false)) < 0 ||
  39.          (code = clist_fclose(pcldev->page_bfile, pcldev->page_bfname, false)) < 0
  40.        )
  41.       return code;
  42.     /* Save the device information. */
  43.     memcpy(&page->device, pdev, sizeof(gx_device));
  44.     strcpy(page->dname, pdev->dname);
  45.     /* Save the page information. */
  46.     page->info = pcldev->page_info;
  47.     page->info.cfile = 0;
  48.     page->info.bfile = 0;
  49. #undef pcldev
  50.     /* Save other information. */
  51.     page->num_copies = num_copies;
  52.     return (*gs_clist_device_procs.open_device)((gx_device *)pdev);
  53. }
  54.  
  55. /* Render an array of saved pages. */
  56. int
  57. gdev_prn_render_pages(gx_device_printer *pdev,
  58.   const gx_placed_page *ppages, int count)
  59. {
  60. #define pcldev ((gx_device_clist_reader *)pdev)
  61.  
  62.     /* Check to make sure the pages are compatible with the device. */
  63.     { int i;
  64.       gx_band_params params;
  65.  
  66.       for ( i = 0; i < count; ++i )
  67.         { const gx_saved_page *page = ppages[i].page;
  68.           /* We would like to fully check the color representation, */
  69.           /* but we don't have enough information to do that. */
  70.           if ( strcmp(page->dname, pdev->dname) != 0 ||
  71.            memcmp(&page->device.color_info, &pdev->color_info,
  72.               sizeof(pdev->color_info)) != 0
  73.          )
  74.         return_error(gs_error_rangecheck);
  75.           /* Currently we don't allow translation in Y. */
  76.           if ( ppages[i].offset.y != 0 )
  77.         return_error(gs_error_rangecheck);
  78.           /* Make sure the band parameters are compatible. */
  79.           if ( page->info.band_params.BandBufferSpace !=
  80.              pdev->buffer_space ||
  81.            page->info.band_params.BandWidth !=
  82.              pdev->width
  83.          )
  84.         return_error(gs_error_rangecheck);
  85.           /* Currently we require all band heights to be the same. */
  86.           if ( i == 0 )
  87.         params = page->info.band_params;
  88.           else if ( page->info.band_params.BandHeight !=
  89.               params.BandHeight
  90.               )
  91.         return_error(gs_error_rangecheck);
  92.         }
  93.     }
  94.     /* Set up the page list in the device. */
  95.     /****** SHOULD FACTOR THIS OUT OF clist_render_init ******/
  96.     pcldev->ymin = pcldev->ymax = 0;
  97.     pcldev->pages = ppages;
  98.     pcldev->num_pages = count;
  99. #undef pcldev
  100.     /* Render the pages. */
  101.     { int code = (*dev_proc(pdev, output_page))
  102.         ((gx_device *)pdev, ppages[0].page->num_copies, true);
  103.       /* Delete the temporary files. */
  104.       int i;
  105.  
  106.       for ( i = 0; i < count; ++i )
  107.         { const gx_saved_page *page = ppages[i].page;
  108.           clist_unlink(page->info.cfname);
  109.           clist_unlink(page->info.bfname);
  110.         }
  111.       return code;
  112.     }
  113. }
  114.